TINYINT SIGNED -128 127 TINYINT UNSIGNED 0 255 (2^8 = 256) DECIMAL(6,2) UNSIGNED 9999.99 FLOAT(6,2) 3.4432E2 10^2=100 Слово != слово bin Слово == слово ci ====================== INSERT INTO `customers` (`cnum`, `cname`, `city`, `rating`, `snum`) VALUES (2001, 'Hoffman', 'London', 100, 1001), (2002, 'Giovanni', 'Rome', 200, 1003), (2003, 'Liu', 'San Jose', 200, 1002), (2004, 'Grass', 'Berlin', 300, 1002), (2006, 'Clemens', 'London', 100, 1001), (2008, 'Cisneros', 'San Jose', 300, 1007), (2007, 'Pereira', 'Rome', 100, 1004), (2010, 'Dickens', 'LA', NULL, 1001); ==================== INSERT INTO `orders` (`onum`, `amt`, `odate`, `cnum`, `snum`) VALUES (3001, 18.69, '1990-03-10', 2008, 1007), (3003, 767.19, '1990-03-10', 2001, 1001), (3002, 1900.10, '1990-03-10', 2007, 1004), (3005, 5160.45, '1990-03-10', 2003, 1002), (3006, 1098.16, '1990-03-10', 2008, 1007), (3009, 1713.23, '1990-04-10', 2002, 1003), (3007, 75.75, '1990-04-10', 2004, 1002), (3008, 4723.00, '1990-05-10', 2006, 1001), (3010, 1309.95, '1990-06-10', 2004, 1002), (3011, 9891.88, '1990-06-10', 2006, 1001); ===================== INSERT INTO `salers` (`snum`, `sname`, `city`, `comm`) VALUES (1001, 'Peel', 'London', 0.12), (1002, 'Serres', 'San Jose', 0.13), (1004, 'Motika', 'London', 0.11), (1007, 'Rifkin', 'Barcelona', 0.15), (1003, 'Axelrod', 'New York', 0.10);